From 732847d1f81a92a896922f51f4945c710f1aea9c Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Thu, 9 Feb 2017 12:44:07 +0100 Subject: [PATCH] bug #778071 improve portability to hp-ux native compiler --- babl/base/pow-24.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/babl/base/pow-24.h b/babl/base/pow-24.h index 5271b40..0defef6 100644 --- a/babl/base/pow-24.h +++ b/babl/base/pow-24.h @@ -88,7 +88,7 @@ static inline float babl_frexpf(float x, int *e) if (!ee) { if (x) { - x = babl_frexpf(x*0x1p64, e); + x = babl_frexpf(x*18446744073709551616.0, e); *e -= 64; } else *e = 0; return x; -- 2.30.2